home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / xmsif15.zip / STACK.ASM < prev    next >
Assembly Source File  |  1991-11-21  |  2KB  |  64 lines

  1. ;***************************************************************************
  2. ;   STACK.ASM                                                              *
  3. ;   MODULE:  TESTUTIL                                                      *
  4. ;   OS:      MS-DOS                                                        *
  5. ;   VERSION: 1.0                                                           *
  6. ;   DATE:    11/24/91                                                      *
  7. ;                                                                          *
  8. ;   Copyright (c) 1991 James W. Birdsall. All Rights Reserved.             *
  9. ;                                                                          *
  10. ;   Compiles under Turbo Assembler 2.5.                                    *
  11. ;                                                                          *
  12. ;   This file is needed when compiling example programs in tiny model with *
  13. ;   Borland compilers. A stack is not provided by default and TLINK does   *
  14. ;   not have the ability to add one at link time. Including this module in *
  15. ;   the link fixes that. This module is not needed when compiling under    *
  16. ;   MSC, since Microsoft's linker can provide a stack at link time.        *
  17. ;                                                                          *
  18. ;**************************************************************************/
  19.  
  20. ;*
  21. ;* model
  22. ;*
  23.  
  24. .MODEL small
  25.  
  26.  
  27. ;*
  28. ;* includes
  29. ;*
  30.  
  31. ;*
  32. ;* local EQUs
  33. ;*
  34.  
  35. ;*
  36. ;* misc: copyright strings, version macros, etc.
  37. ;*
  38.  
  39. ;*
  40. ;* structure definitions
  41. ;*
  42.  
  43. ;*
  44. ;* OTHER SEGMENTS
  45. ;*
  46.  
  47. .STACK 2048
  48.  
  49.  
  50. ;*
  51. ;* DATA SEGMENT - global variables
  52. ;*
  53.  
  54. ;*
  55. ;* DATA SEGMENT - static globals
  56. ;*
  57.  
  58. ;*
  59. ;* CODE SEGMENT - functions
  60. ;*
  61.  
  62.  
  63. END
  64.